home *** CD-ROM | disk | FTP | other *** search
Makefile | 1996-09-20 | 1.1 KB | 55 lines |
- #!smake
- include $(ROOT)/usr/include/make/commondefs
-
- # 64-bit build issues:
- # * The default build is set by commondefs to be mips2, 32 bits,
- # for all machines.
- # * This can be overridden by setting OBJECT_STYLE to either N32 or 64:
- # * setenv OBJECT_STYLE N32
- # * setenv OBJECT_STYLE 64
- # * env OBJECT_STYLE=N32 make ...
- # * env OBJECT_STYLE=64 make ...
- # * libtt (tooltalk) is only shipped as an o32 library. Consequently,
- # some ViewKit demos will not build in any other ABI. The following
- # conditionals allow for that.
- #
-
- #if $(OBJECT_STYLE:M64*) == ""
- # libsun is only shipped as a 32-bit library, and is needed by Communication
- COMMUNICATION_DIR = Communication
- #endif
-
- SUBDIRS= \
- Applications \
- Basic \
- $(COMMUNICATION_DIR) \
- Components \
- ComponentDemos \
- CutPasteDragDrop \
- Dialogs \
- Icons \
- Menus \
- Preferences \
- ProgrammersGuide \
- Process \
- QuickHelp \
- Utilities \
- $(NULL)
-
- C++FILES= \
- $(NULL)
-
- HEADERS= \
- $(NULL)
-
- TARGETS=\
- $(NULL)
-
- COMMONPREF = lcl_
- default all targets $(COMMONTARGS):
- $(SUBDIRS_MAKERULE)
-
- headers:
-
- include $(COMMONRULES)
-